home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / a_utils / perl / prlbkxmp.lha / ch5 / forkdaemon.eg < prev    next >
Text File  |  1991-01-08  |  257b  |  13 lines

  1. unless (fork) { # this is the child
  2.     unless (fork) { # this is the child's child
  3.     sleep 1 until getppid == 1;
  4.     for (1..1000) {
  5.         system "foo $_";
  6.     }
  7.     exit 0;
  8.     }
  9.     # first child exits quickly
  10.     exit 0;
  11. }
  12. wait; # parent reaps first child quickly
  13.